home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / idlelib / ScriptBinding.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  7KB  |  200 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. """Extension to execute code outside the Python shell window.
  5.  
  6. This adds the following commands:
  7.  
  8. - Check module does a full syntax check of the current module.
  9.   It also runs the tabnanny to catch any inconsistent tabs.
  10.  
  11. - Run module executes the module's code in the __main__ namespace.  The window
  12.   must have been saved previously. The module is added to sys.modules, and is
  13.   also added to the __main__ namespace.
  14.  
  15. XXX GvR Redesign this interface (yet again) as follows:
  16.  
  17. - Present a dialog box for ``Run Module''
  18.  
  19. - Allow specify command line arguments in the dialog box
  20.  
  21. """
  22. import os
  23. import re
  24. import string
  25. import tabnanny
  26. import tokenize
  27. import tkMessageBox
  28. import PyShell
  29. from configHandler import idleConf
  30. IDENTCHARS = string.ascii_letters + string.digits + '_'
  31. indent_message = 'Error: Inconsistent indentation detected!\n\nThis means that either:\n\n1) your indentation is outright incorrect (easy to fix), or\n\n2) your indentation mixes tabs and spaces in a way that depends on how many spaces a tab is worth.\n\nTo fix case 2, change all tabs to spaces by using Select All followed by Untabify Region (both in the Edit menu).'
  32.  
  33. class ScriptBinding:
  34.     menudefs = [
  35.         ('run', [
  36.             None,
  37.             ('Check Module', '<<check-module>>'),
  38.             ('Run Module', '<<run-module>>')])]
  39.     
  40.     def __init__(self, editwin):
  41.         self.editwin = editwin
  42.         self.flist = self.editwin.flist
  43.         self.root = self.flist.root
  44.  
  45.     
  46.     def check_module_event(self, event):
  47.         filename = self.getfilename()
  48.         if not filename:
  49.             return None
  50.         
  51.         if not self.tabnanny(filename):
  52.             return None
  53.         
  54.         self.checksyntax(filename)
  55.  
  56.     
  57.     def tabnanny(self, filename):
  58.         f = open(filename, 'r')
  59.         
  60.         try:
  61.             tabnanny.process_tokens(tokenize.generate_tokens(f.readline))
  62.         except tokenize.TokenError:
  63.             msg = None
  64.             (lineno, start) = (msgtxt,)
  65.             self.editwin.gotoline(lineno)
  66.             self.errorbox('Tabnanny Tokenizing Error', 'Token Error: %s' % msgtxt)
  67.             return False
  68.         except tabnanny.NannyNag:
  69.             nag = None
  70.             self.editwin.gotoline(nag.get_lineno())
  71.             self.errorbox('Tab/space error', indent_message)
  72.             return False
  73.         except:
  74.             msg
  75.  
  76.         return True
  77.  
  78.     
  79.     def checksyntax(self, filename):
  80.         self.shell = shell = self.flist.open_shell()
  81.         saved_stream = shell.get_warning_stream()
  82.         shell.set_warning_stream(shell.stderr)
  83.         f = open(filename, 'r')
  84.         source = f.read()
  85.         f.close()
  86.         if '\r' in source:
  87.             source = re.sub('\\r\\n', '\n', source)
  88.             source = re.sub('\\r', '\n', source)
  89.         
  90.         if source and source[-1] != '\n':
  91.             source = source + '\n'
  92.         
  93.         text = self.editwin.text
  94.         text.tag_remove('ERROR', '1.0', 'end')
  95.         
  96.         try:
  97.             return compile(source, filename, 'exec')
  98.         except (SyntaxError, OverflowError):
  99.             err = None
  100.             
  101.             try:
  102.                 (errorfilename, lineno, offset, line) = (msg,)
  103.                 if not errorfilename:
  104.                     err.args = (msg, (filename, lineno, offset, line))
  105.                     err.filename = filename
  106.                 
  107.                 self.colorize_syntax_error(msg, lineno, offset)
  108.             except:
  109.                 msg = '*** ' + str(err)
  110.  
  111.             self.errorbox('Syntax error', "There's an error in your program:\n" + msg)
  112.             return False
  113.         finally:
  114.             shell.set_warning_stream(saved_stream)
  115.  
  116.  
  117.     
  118.     def colorize_syntax_error(self, msg, lineno, offset):
  119.         text = self.editwin.text
  120.         pos = '0.0 + %d lines + %d chars' % (lineno - 1, offset - 1)
  121.         text.tag_add('ERROR', pos)
  122.         char = text.get(pos)
  123.         if char and char in IDENTCHARS:
  124.             text.tag_add('ERROR', pos + ' wordstart', pos)
  125.         
  126.         if '\n' == text.get(pos):
  127.             text.mark_set('insert', pos)
  128.         else:
  129.             text.mark_set('insert', pos + '+1c')
  130.         text.see(pos)
  131.  
  132.     
  133.     def run_module_event(self, event):
  134.         """Run the module after setting up the environment.
  135.  
  136.         First check the syntax.  If OK, make sure the shell is active and
  137.         then transfer the arguments, set the run environment's working
  138.         directory to the directory of the module being executed and also
  139.         add that directory to its sys.path if not already included.
  140.  
  141.         """
  142.         filename = self.getfilename()
  143.         if not filename:
  144.             return None
  145.         
  146.         code = self.checksyntax(filename)
  147.         if not code:
  148.             return None
  149.         
  150.         shell = self.shell
  151.         interp = shell.interp
  152.         if PyShell.use_subprocess:
  153.             shell.restart_shell()
  154.         
  155.         dirname = os.path.dirname(filename)
  156.         interp.runcommand('if 1:\n            _filename = %r\n            import sys as _sys\n            from os.path import basename as _basename\n            if (not _sys.argv or\n                _basename(_sys.argv[0]) != _basename(_filename)):\n                _sys.argv = [_filename]\n            import os as _os\n            _os.chdir(%r)\n            del _filename, _sys, _basename, _os\n            \n' % (filename, dirname))
  157.         interp.prepend_syspath(filename)
  158.         interp.runcode(code)
  159.  
  160.     
  161.     def getfilename(self):
  162.         '''Get source filename.  If not saved, offer to save (or create) file
  163.  
  164.         The debugger requires a source file.  Make sure there is one, and that
  165.         the current version of the source buffer has been saved.  If the user
  166.         declines to save or cancels the Save As dialog, return None.
  167.  
  168.         If the user has configured IDLE for Autosave, the file will be
  169.         silently saved if it already exists and is dirty.
  170.  
  171.         '''
  172.         filename = self.editwin.io.filename
  173.         if not self.editwin.get_saved():
  174.             autosave = idleConf.GetOption('main', 'General', 'autosave', type = 'bool')
  175.             if autosave and filename:
  176.                 self.editwin.io.save(None)
  177.             else:
  178.                 reply = self.ask_save_dialog()
  179.                 self.editwin.text.focus_set()
  180.                 if reply == 'ok':
  181.                     self.editwin.io.save(None)
  182.                     filename = self.editwin.io.filename
  183.                 else:
  184.                     filename = None
  185.         
  186.         return filename
  187.  
  188.     
  189.     def ask_save_dialog(self):
  190.         msg = 'Source Must Be Saved\n' + 5 * ' ' + 'OK to Save?'
  191.         mb = tkMessageBox.Message(title = 'Save Before Run or Check', message = msg, icon = tkMessageBox.QUESTION, type = tkMessageBox.OKCANCEL, default = tkMessageBox.OK, master = self.editwin.text)
  192.         return mb.show()
  193.  
  194.     
  195.     def errorbox(self, title, message):
  196.         tkMessageBox.showerror(title, message, master = self.editwin.text)
  197.         self.editwin.text.focus_set()
  198.  
  199.  
  200.